home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / gsdb21.arc / DB_XPL10.PAS < prev    next >
Pascal/Delphi Source File  |  1991-01-04  |  220b  |  16 lines

  1. program DB_Xpl10;
  2. uses
  3.    GS_dBFld;
  4.  
  5. var
  6.    f : GS_dBFld_Objt;
  7.  
  8. begin
  9.    if f.Create('testfile') then
  10.    begin
  11.       f.Open;
  12.       while f.FieldAppendScreen(true) do f.Append;
  13.       f.Close;
  14.    end;
  15. end.
  16.